From 0528a7472c340278a3cca1a2f9bd1ec271f3b56c Mon Sep 17 00:00:00 2001 From: Stefan Monnier Date: Tue, 12 Jun 2012 14:10:34 -0400 Subject: [PATCH] * lisp/emacs-lisp/cl-macs.el (cl-remf): Fix error in recent conversion to backquotes. --- lisp/ChangeLog | 5 +++++ lisp/emacs-lisp/cl-macs.el | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 4d2f711d16b..75005c0a99d 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2012-06-12 Stefan Monnier + + * emacs-lisp/cl-macs.el (cl-remf): Fix error in recent + conversion to backquotes. + 2012-06-12 Chong Yidong * emacs-lisp/edebug.el (edebug-inhibit-emacs-lisp-mode-bindings): diff --git a/lisp/emacs-lisp/cl-macs.el b/lisp/emacs-lisp/cl-macs.el index 0b49563adff..bc90898ad00 100644 --- a/lisp/emacs-lisp/cl-macs.el +++ b/lisp/emacs-lisp/cl-macs.el @@ -2325,7 +2325,7 @@ The form returns true if TAG was found and removed, nil otherwise." (if (eq ,ttag (car ,tval)) (progn ,(cl-setf-do-store (nth 1 method) `(cddr ,tval)) t) - `(cl--do-remf ,tval ,ttag))))) + (cl--do-remf ,tval ,ttag))))) ;;;###autoload (defmacro cl-shiftf (place &rest args) -- 2.30.2